ComponentOne PDF for .NET
CSJ2K.j2k.io Namespace / BEBufferedRandomAccessFile Class / write Method / write(Byte[],Int32,Int32) Method
The array of bytes to write.
The first byte in b to write
The number of bytes from b to write

In This Topic
    write(Byte[],Int32,Int32) Method
    In This Topic
    Writes aan array of bytes to the stream. Prior to writing, the stream is realigned at the byte level.
    Syntax
    'Declaration
     
    
    Public Overloads Sub write( _
       ByVal b() As Byte, _
       ByVal offset As Integer, _
       ByVal length As Integer _
    ) 
    public void write( 
       byte[] b,
       int offset,
       int length
    )

    Parameters

    b
    The array of bytes to write.
    offset
    The first byte in b to write
    length
    The number of bytes from b to write
    See Also